' Random number generator - produces a random number given a range of numbers
        ' Requires a new Visual Basic object of type Random which must be declared:
        Dim randomGenerator As New Random
        Dim computerChoice

        'show the user's choice

        'now it's the computer's turn, generate a random number 1 (rock), 2 (paper), 3 (scissors)
        'The random object has a Next method that will return a number greater than or 
        'equal to the first number and less than the second number.

        computerChoice = randomGenerator.Next(1, 4)
        If computerChoice = 1 Then

        End If
